home *** CD-ROM | disk | FTP | other *** search
/ Freaks Macintosh Archive / Freaks Macintosh Archive.bin / Freaks Macintosh Archives / Macintosh / ResEdit3.0.sit / ResEdit™ 3.0 / ResEdit 3.0.rsrc / VDL_3501_Grid Dialog < prev    next >
Text File  |  1997-01-27  |  633b  |  33 lines

  1. Margin(10, 10, 10, 10)
  2. VList()
  3.     {
  4.     Label("Grid Settings: ", Single)
  5.          Margin(5,5,5,5)
  6.             VList()
  7.                 {
  8.                 HList()
  9.                     {
  10.                     Margin(2,2,2,2)
  11.                         StaticText("Horizontal: ", Width = 100, Alignment = Right);
  12.                         
  13.                     EditText(hGrid, Unsigned(16), Width = 50);
  14.                     
  15.                     Margin(2,2,2,2)
  16.                         StaticText(" Pixels");
  17.                     }
  18.                 Spacer(Height = 5);
  19.                 HList()
  20.                     {
  21.                     Margin(2,2,2,2)
  22.                         StaticText("Vertical: ", Width = 100, Alignment = Right);
  23.                         
  24.                     EditText(vGrid, Unsigned(16), Width = 50);
  25.                     
  26.                     Margin(2,2,2,2)
  27.                         StaticText(" Pixels");
  28.                     }
  29.                 }
  30.                 
  31.     Spacer(Height = 10);
  32.     StandardDialogButtons;
  33.     }